home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 November
/
Macworld (1999-11).dmg
/
Shareware World
/
Comms & Internet
/
DXF to VRML97 1.0.1
/
src
/
DropUNIX Lib
/
Lib Headers
/
DSGlobals.h
< prev
next >
Wrap
Text File
|
1998-08-31
|
2KB
|
72 lines
/******************************************************************************
**
** Project Name: DropShell
** File Name: DSGlobals.h
**
** Description: Globals used by DropShell
**
*******************************************************************************
** A U T H O R I D E N T I T Y
*******************************************************************************
**
** Initials Name
** -------- -----------------------------------------------
** LDR Leonard Rosenthol
** MTC Marshall Clow
** SCS Stephan Somogyi
**
*******************************************************************************
** R E V I S I O N H I S T O R Y
*******************************************************************************
**
** Date Time Author Description
** -------- ----- ------ ---------------------------------------------
** 04/15/96 RWD Removed #ifndef __MWERKS__ which caused problems
** when not using Precompiled Headers.
** 02/20/94 LDR Added commenting for Metrowerks
** 12/09/91 LDR Added gSplashScreen
** 11/24/91 LDR Added some new #defs & a #inc for DSUtils
** 10/29/91 SCS Changes for THINK C 5
** 10/28/91 LDR Officially renamed DropShell (from QuickShell)
** 10/06/91 00:02 MTC Converted to MPW C
** 04/09/91 00:03 LDR Added to Projector
**
******************************************************************************/
#ifndef __DSGLOBALS_H__
#define __DSGLOBALS_H__
#include <Types.h>
#include <Memory.h>
#include <QuickDraw.h>
#include <OSUtils.h>
#include <ToolUtils.h>
#include <Menus.h>
#include <Packages.h>
#include <Traps.h>
#include <Files.h>
#include <Aliases.h>
#include <AppleEvents.h>
#include <Gestalt.h>
#include <Processes.h>
#define kAppleNum 32000
#define kFileNum 32001
#define kErrorStringsID 100
#define kCantRunError 1
#define kAEVTError 2
#define kResourceLoadError 3
#define kMemoryError 4
#define kUnknownError 5
#define qWalkFolders 1 /* define this as 0 to treat folders as items */
extern Boolean gDone, gOApped, gHasAppleEvents, gWasEvent;
extern EventRecord gEvent;
extern MenuHandle gAppleMenu, gFileMenu;
extern WindowPtr gSplashScreen;
#endif